123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- import globals from 'globals';
- import jsdoc from './dist/index.js';
- // import canonical from 'eslint-config-canonical';
- // import canonicalJsdoc from 'eslint-config-canonical/jsdoc.js';
- const common = {
- linterOptions: {
- reportUnusedDisableDirectives: 0
- },
- plugins: {
- jsdoc
- }
- };
- export default [
- // canonical,
- // canonicalJsdoc,
- {
- ...common,
- files: ['.ncurc.js'],
- languageOptions: {
- parserOptions: {
- ecmaFeatures: {
- impliedStrict: false
- },
- },
- sourceType: 'script'
- },
- rules: {
- 'import/no-commonjs': 0,
- strict: [
- 'error',
- 'global'
- ]
- }
- },
- {
- ...common,
- files: ['test/**/*.js'],
- rules: {
- 'no-restricted-syntax': 0,
- 'unicorn/prevent-abbreviations': 0
- }
- },
- {
- ...common,
- ignores: ['dist/**/*.js', '.ignore/**/*.js'],
- languageOptions: {
- globals: globals.node
- },
- settings: {
- jsdoc: {
- mode: 'typescript'
- }
- },
- rules: {
- 'array-element-newline': 0,
- 'filenames/match-regex': 0,
- 'import/extensions': 0,
- 'import/no-useless-path-segments': 0,
- 'prefer-named-capture-group': 0,
- 'unicorn/no-array-reduce': 0,
- 'unicorn/no-unsafe-regex': 0,
- 'unicorn/prefer-array-some': 0,
- 'unicorn/prevent-abbreviations': 0,
- 'unicorn/import-index': 0,
- 'linebreak-style': 0,
- 'no-inline-comments': 0,
- 'no-extra-parens': 0
- }
- }
- ];
|