Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brett-richardson/ast_guidelines
Analyze Ruby code for high level architectural issues
https://github.com/brett-richardson/ast_guidelines
Last synced: 12 days ago
JSON representation
Analyze Ruby code for high level architectural issues
- Host: GitHub
- URL: https://github.com/brett-richardson/ast_guidelines
- Owner: brett-richardson
- License: mit
- Created: 2016-07-26T23:16:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-26T23:17:09.000Z (over 8 years ago)
- Last Synced: 2024-11-11T00:28:50.496Z (2 months ago)
- Language: Ruby
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
AstGuidelines
=============This is bad:
```ruby
class MyClass
module MyModule
end
end
```But this is ok:
```ruby
module MyModule
class MyClass
end
end
```this gem tells you it's not ok