Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Making EPF File Generation less generically named #1

Merged
merged 2 commits into from
Mar 17, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Maximum example, remove per project as needed
engines:
scss-lint:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
eslint:
enabled: true
extensions:
- .es6
- .js
fixme:
enabled: true
rubocop:
enabled: true

ratings:
paths:
- Gemfile.lock
- "lib/**"
- "**.erb"
- "**.haml"
- "**.rb"
- "**.rhtml"
- "**.slim"
- "**.ngslim"
- "**.css"
- "**.coffee"
- "**.js"
- "**.es6"
exclude_paths:
- spec/
- vendor/
- db/schema.rb
8 changes: 8 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
**/*{.,-}min.js

coverage
karma.conf.js
tmp
node_modules/**
vendor/assets/bower_components/**
js_spec
128 changes: 128 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
{
"env": {
"browser": true,
"jasmine": true,
"node": true,
"es6": true
},
"globals": {
"angular": false,
"$": false,
"_": false,
"LayMeOut": false,
"moment": false,
"fixture": false,
"inject": false
},
"rules": {
"no-bitwise": 2,
"camelcase": [
2,
{
"properties": "always"
}
],
"curly": [
2,
"all"
],
"eqeqeq": 2,
"guard-for-in": 2,
"no-extend-native": 2,
"wrap-iife": 2,
"indent": [
2,
2,
{
"SwitchCase": 1,
"VariableDeclarator": 2
}
],
"no-use-before-define": 2,
"new-cap": 2,
"no-caller": 2,
"no-empty": 0,
"no-irregular-whitespace": 2,
"no-new": 2,
"no-plusplus": 0,
"quotes": [
2,
"single"
],
"no-undef": 2,
"no-unused-vars": 0,
"strict": 0,
"max-params": [
2,
10
],
"max-depth": [
2,
5
],
"max-statements": [
2,
40
],
"complexity": [
2,
8
],
"max-len": [
2,
120
],
"semi": 0,
"no-cond-assign": 0,
"no-debugger": 0,
"no-eq-null": 2,
"no-eval": 0,
"no-unused-expressions": 0,
"block-scoped-var": 0,
"no-iterator": 0,
"linebreak-style": 0,
"comma-style": 0,
"no-loop-func": 2,
"no-multi-str": 2,
"valid-typeof": 0,
"no-proto": 0,
"no-script-url": 0,
"no-shadow": 2,
"dot-notation": 0,
"no-new-func": 0,
"no-new-wrappers": 0,
"no-invalid-this": 0,
"require-yield": 0,
"operator-linebreak": [
2,
"after"
],
"no-mixed-spaces-and-tabs": 2,
"no-trailing-spaces": 2,
"space-unary-ops": 0,
"one-var": 0,
"space-return-throw-case": 0,
"space-after-keywords": [
2,
"always"
],
"space-infix-ops": 2,
"space-before-blocks": [
2,
"always"
],
"eol-last": 2,
"array-bracket-spacing": [
2,
"never"
],
"space-in-parens": [
2,
"never"
],
"valid-jsdoc": 2,
"no-multiple-empty-lines": 2,
"no-underscore-dangle": 0,
"comma-dangle": 0
}
}
Loading