UNPKG

linter-bundle

Version:

Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.

25 lines (22 loc) 639 B
/** * @file Extends `./javascript` but ignores unsafe types. */ import javascriptExtends from './javascript.mjs'; export default [ ...javascriptExtends, { files: ['**/*.js', '**/*.cjs', '**/*.mjs'], rules: { /** * typescript-eslint * * @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules */ '@typescript-eslint/no-unsafe-argument': 'off', '@typescript-eslint/no-unsafe-assignment': 'off', '@typescript-eslint/no-unsafe-call': 'off', '@typescript-eslint/no-unsafe-member-access': 'off', '@typescript-eslint/no-unsafe-return': 'off' } } ];