Skip to content

Commit

Permalink
Fikset comma-dangle regel
Browse files Browse the repository at this point in the history
  • Loading branch information
KenAJoh committed Jul 15, 2020
1 parent 4761197 commit cf8fed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
"no-unused-vars": [2, { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }],
"indent": [2, 4, { "SwitchCase": 1 }],
"max-len": [2, 120, 4],
"comma-dangle": [2, "never"],
"comma-dangle": [0, "never"],
"arrow-parens": [2, "always"],
"import/no-extraneous-dependencies": ["error", { "peerDependencies": true }],
"import/no-unresolved": ["warn", { "ignore": ["NavFrontendModules/"] }],
Expand Down Expand Up @@ -61,7 +61,7 @@ module.exports = {
},
rules: {
"camelcase": "error",
"comma-dangle": "error",
"comma-dangle": [0, "never"],
"id-blacklist": "error",
"id-match": "error",
"max-len": ["error", { "code": 120 }],
Expand Down

0 comments on commit cf8fed6

Please sign in to comment.