unused 0.6.1.0 → 0.6.1.1
raw patch · 2 files changed
+88/−1 lines, 2 files
Files
- data/config.yml +86/−0
- unused.cabal +2/−1
+ data/config.yml view
@@ -0,0 +1,86 @@+- name: Rails+ aliases:+ - from: "*?"+ to: "be_{}"+ - from: "has_*?"+ to: "have_{}"+ - from: "*Validator"+ to: "{snakecase}"+ allowedTerms:+ # serialization+ - as_json+ # inflection+ - Inflector+ # Concerns+ - ClassMethods+ - class_methods+ - included+ # rendering+ - to_partial_path+ autoLowLikelihood:+ - name: Migration+ pathStartsWith: db/migrate/+ classOrModule: true+ appOccurrences: 1+ - name: Migration Helper+ pathStartsWith: db/migrate/+ allowedTerms:+ - up+ - down+ - change+ - index+ - name: i18n+ allowedTerms:+ - t+ - l+ pathEndsWith: .rb+ - name: Controller+ pathStartsWith: app/controllers+ termEndsWith: Controller+ classOrModule: true+ - name: Helper+ pathStartsWith: app/helpers+ termEndsWith: Helper+ classOrModule: true+- name: Phoenix+ allowedTerms:+ - Mixfile+ - __using__+ autoLowLikelihood:+ - name: Migration+ pathStartsWith: priv/repo/migrations+ classOrModule: true+ - name: View+ pathStartsWith: web/views/+ termEndsWith: View+ classOrModule: true+ - name: Test+ pathStartsWith: test/+ termEndsWith: Test+ classOrModule: true+ - name: Controller actions+ pathStartsWith: web/controllers+ allowedTerms:+ - index+ - new+ - create+ - show+ - edit+ - update+ - destroy+- name: Haskell+ allowedTerms: []+ autoLowLikelihood:+ - name: Spec+ pathStartsWith: test/+ termEndsWith: Spec+ classOrModule: true+ - name: Cabalfile+ pathEndsWith: .cabal+ appOccurrences: 1+ - name: TypeClasses+ termEquals: instance+ pathEndsWith: .hs+ - name: Spec functions+ termEquals: spec+ pathStartsWith: test/
unused.cabal view
@@ -1,5 +1,5 @@ name: unused-version: 0.6.1.0+version: 0.6.1.1 synopsis: A command line tool to identify unused code. description: Please see README.md homepage: https://github.com/joshuaclayton/unused#readme@@ -12,6 +12,7 @@ build-type: Simple -- extra-source-files: cabal-version: >=1.10+data-files: data/config.yml library hs-source-dirs: src