Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #8 from appfolio/updateFromFork
Browse files Browse the repository at this point in the history
Update from fork
  • Loading branch information
Tim Connor authored Jan 21, 2020
2 parents 89fcf66 + 6cbd5dc commit b7d02e2
Show file tree
Hide file tree
Showing 3 changed files with 1,554 additions and 18 deletions.
18 changes: 6 additions & 12 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,15 @@ module.exports = {
rules: {
'arrow-body-style': [2, 'as-needed', { requireReturnForObjectLiteral: true }],
'comma-dangle': 0,
'import/extensions': 0,
'import/no-unresolved': 1, // To minimize false errors with Webpack loaders
'max-len': 1,
'max-len': [1, 100, { ignoreTrailingComments: true }],
'new-cap': 1,
'no-console': 1,
'prefer-const': [1, {
destructuring: 'any',
ignoreReadBeforeAssign: true
}],
'require-jsdoc': [1, { // Encourage writing comments
require: {
FunctionDeclaration: false,
MethodDefinition: false,
ClassDeclaration: true
}
}],
'no-param-reassign': 0,
'no-return-assign': 1,
'object-curly-newline': 0,
'prefer-destructuring': 0,
'spaced-comment': 0
}
}
Loading

0 comments on commit b7d02e2

Please sign in to comment.