Skip to content

Commit

Permalink
feat(eslint-plugin-experience): add sort-lifecycle-methods
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Nov 13, 2023
1 parent 7eeebae commit 2eb6cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/eslint-plugin-experience/configs/typescript.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const base =
projectJsonExist('tsconfig.eslint.json') || projectJsonExist('tsconfig.json') || '';
const project = base ? [base] : [];

module.exports = {
overrides: [
Expand All @@ -15,6 +14,7 @@ module.exports = {
plugins: ['@typescript-eslint'],
rules: {
'unicorn/prefer-logical-operator-over-ternary': 'error',
'@angular-eslint/sort-lifecycle-methods': 'error',
'@typescript-eslint/require-array-sort-compare': 'error',
'@typescript-eslint/no-unnecessary-boolean-literal-compare': 'error',
'@typescript-eslint/no-unnecessary-type-constraint': 'error',
Expand Down

0 comments on commit 2eb6cda

Please sign in to comment.