-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1005 from kuzzleio/4-dev
4 dev
- Loading branch information
Showing
264 changed files
with
26,011 additions
and
31,347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
const path = require('node:path'); | ||
|
||
module.exports = { | ||
root: true, | ||
extends: ['plugin:vue-kuzzle/default'], | ||
parserOptions: { | ||
project: path.join(__dirname, 'tsconfig.json'), | ||
}, | ||
ignorePatterns: ['dist/*'], | ||
rules: { | ||
'@typescript-eslint/strict-boolean-expressions': 'off', | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
'@typescript-eslint/restrict-template-expressions': 'off', | ||
'@typescript-eslint/prefer-optional-chain': 'off', | ||
'@typescript-eslint/no-floating-promises': 'off', | ||
'@typescript-eslint/ban-ts-comment': 'off', | ||
'@typescript-eslint/restrict-plus-operands': 'off', | ||
'@typescript-eslint/prefer-nullish-coalescing': 'off', | ||
'@typescript-eslint/no-empty-function': 'off', | ||
'@typescript-eslint/naming-convention': 'off', | ||
'@typescript-eslint/no-unused-vars': 'off', | ||
'@typescript-eslint/require-array-sort-compare': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/ban-types': 'off', | ||
'@typescript-eslint/no-dynamic-delete': 'off', | ||
'vue/multi-word-component-names': 'off', | ||
'vue/block-lang': 'off', | ||
'vue/no-mutating-props': 'off', | ||
'array-callback-return': 'off', | ||
'vue/require-default-prop': 'off', | ||
'vue/order-in-components': 'off', | ||
'vue/no-useless-template-attributes': 'off', | ||
'vue/no-reserved-component-names': 'off', | ||
'vue/require-prop-types': 'off', | ||
'vue/no-lone-template': 'off', | ||
'default-case-last': 'warn', | ||
'import/order': 'warn' | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,6 @@ runs: | |
steps: | ||
- run: npm ci | ||
shell: bash | ||
|
||
- run: npm run test:lint | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.