Skip to content

Commit

Permalink
Merge pull request #202 from MikeMcC399/migrate/internal-flat
Browse files Browse the repository at this point in the history
chore: migrate internal linting to flat config
  • Loading branch information
jennifer-shehane committed May 6, 2024
2 parents 730a260 + 0b67034 commit f38cc04
Show file tree
Hide file tree
Showing 4 changed files with 211 additions and 73 deletions.
30 changes: 0 additions & 30 deletions .eslintrc.js

This file was deleted.

27 changes: 27 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import globals from 'globals'
import pluginJs from '@eslint/js'
import eslintPlugin from 'eslint-plugin-eslint-plugin'
import nodePlugin from 'eslint-plugin-n'
import mochaPlugin from 'eslint-plugin-mocha'

export default [
pluginJs.configs.recommended,
eslintPlugin.configs['flat/recommended'],
nodePlugin.configs['flat/recommended-script'],
mochaPlugin.configs.flat.recommended,
{
languageOptions: {
globals: globals.node
},
rules: {
'no-redeclare': 'off',
'eslint-plugin/require-meta-docs-url':
['error', { 'pattern': 'https://github.com/cypress-io/eslint-plugin-cypress/blob/master/docs/rules/{{name}}.md' }],
'eslint-plugin/require-meta-docs-description': 'error',
'n/no-extraneous-require':
['error', { 'allowModules': ['jest-config'] }],
'mocha/no-mocha-arrows': 'off',
'mocha/no-setup-in-describe': 'off'
}
},
]
Loading

0 comments on commit f38cc04

Please sign in to comment.