Skip to content

Commit

Permalink
disable some octane lint rules we're not ready to impose yet
Browse files Browse the repository at this point in the history
  • Loading branch information
ef4 committed Oct 14, 2021
1 parent 2995a73 commit 6937c71
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ module.exports = {
env: {
browser: true,
},
rules: {},
rules: {
'ember/no-classic-components': 'off',
'ember/no-classic-classes': 'off',
'ember/require-tagless-components': 'off',
},
overrides: [
// node files
{
Expand Down
4 changes: 4 additions & 0 deletions .template-lintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@

module.exports = {
extends: 'recommended',
rules: {
'no-curly-component-invocation': false,
'no-implicit-this': false,
},
};

0 comments on commit 6937c71

Please sign in to comment.