Skip to content

Commit

Permalink
[petty] (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
omrilotan authored Oct 1, 2020
1 parent d903849 commit db91dca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fiverr/eslint-config-fiverr",
"moduleName": "eslint-config-fiverr",
"version": "3.2.0",
"version": "3.2.1",
"description": "Fiverr's ESLint config",
"author": "Fiverr",
"license": "MIT",
Expand Down
9 changes: 7 additions & 2 deletions rules/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ module.exports = {
'comma-style': ERROR,
'computed-property-spacing': ERROR,
'dot-notation': ERROR,
'eol-last': ERROR,
'func-call-spacing': ERROR,
'indent': [ERROR, 4, {
SwitchCase: WARN
Expand All @@ -38,8 +39,12 @@ module.exports = {
'new-cap': IGNORE,
'no-lonely-if': ERROR,
'no-case-declarations': IGNORE,
'no-multiple-empty-lines': ERROR,
'no-trailing-spaces': WARN,
'no-multiple-empty-lines': [ERROR, {
max: 1,
maxBOF: 0,
maxEOF: 0
}],
'no-trailing-spaces': ERROR,
'no-unneeded-ternary': ERROR,
'no-unused-vars': [ERROR, {
varsIgnorePattern: 'React',
Expand Down

0 comments on commit db91dca

Please sign in to comment.