-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
5,092 additions
and
4,644 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
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 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,33 @@ | ||
# Ensure filenames match a regex naming convention (`github/filenames-match-regex`) | ||
|
||
<!-- end auto-generated rule header --> | ||
|
||
## Rule Details | ||
|
||
Rule to ensure that filenames match a convention, with a default of camelCase for ESLint v9+. | ||
|
||
👎 Examples of **incorrect** filename for this default rule: | ||
|
||
`file-name.js` | ||
|
||
👍 Examples of **correct** code for this rule: | ||
|
||
`fileName.js` | ||
|
||
## Options | ||
|
||
regex - Regex to match the filename structure. Defaults to camelCase. | ||
|
||
|
||
```json | ||
{ | ||
"filenames-match-regex": [ | ||
"error", | ||
"^[a-z0-9-]+(.[a-z0-9-]+)?$" | ||
] | ||
} | ||
``` | ||
|
||
## Version | ||
|
||
4.3.2 |
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,37 @@ | ||
const globals = require('globals') | ||
const eslintPlugin = require('eslint-plugin-eslint-plugin') | ||
const importPlugin = require('eslint-plugin-import') | ||
const i18nTextPlugin = require('eslint-plugin-i18n-text') | ||
const recommendedGitHub = require('./lib/configs/flat/recommended') | ||
const {fixupPluginRules} = require('@eslint/compat') | ||
|
||
module.exports = [ | ||
recommendedGitHub, | ||
eslintPlugin.configs['flat/all'], | ||
{ | ||
ignores: ['test-examples/**'], | ||
}, | ||
{ | ||
languageOptions: { | ||
ecmaVersion: 13, | ||
globals: { | ||
...globals.es6, | ||
...globals.node, | ||
}, | ||
}, | ||
plugins: { | ||
eslintPlugin, | ||
importPlugin, | ||
'i18n-text': fixupPluginRules(i18nTextPlugin), | ||
}, | ||
rules: { | ||
'importPlugin/extensions': 'off', | ||
'importPlugin/no-commonjs': 'off', | ||
'github/filenames-match-regex': 'off', | ||
'i18n-text/no-en': 'off', | ||
'eslint-plugin/prefer-placeholders': 'off', | ||
'eslint-plugin/test-case-shorthand-strings': 'off', | ||
'eslint-plugin/require-meta-docs-url': 'off', | ||
}, | ||
}, | ||
] |
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,37 @@ | ||
const globals = require('globals') | ||
const github = require('../../plugin') | ||
const importPlugin = require('eslint-plugin-import') | ||
const escompatPlugin = require('eslint-plugin-escompat') | ||
const {fixupPluginRules} = require('@eslint/compat') | ||
|
||
module.exports = { | ||
...escompatPlugin.configs['flat/recommended'], | ||
languageOptions: { | ||
globals: { | ||
...globals.browser, | ||
}, | ||
}, | ||
plugins: {importPlugin, escompatPlugin, github: fixupPluginRules(github)}, | ||
rules: { | ||
'escompatPlugin/no-dynamic-imports': 'off', | ||
'github/async-currenttarget': 'error', | ||
'github/async-preventdefault': 'error', | ||
'github/get-attribute': 'error', | ||
'github/no-blur': 'error', | ||
'github/no-dataset': 'error', | ||
'github/no-innerText': 'error', | ||
'github/no-inner-html': 'error', | ||
'github/unescaped-html-literal': 'error', | ||
'github/no-useless-passive': 'error', | ||
'github/require-passive-events': 'error', | ||
'github/prefer-observers': 'error', | ||
'importPlugin/no-nodejs-modules': 'error', | ||
'no-restricted-syntax': [ | ||
'error', | ||
{ | ||
selector: "NewExpression[callee.name='URL'][arguments.length=1]", | ||
message: 'Please pass in `window.location.origin` as the 2nd argument to `new URL()`', | ||
}, | ||
], | ||
}, | ||
} |
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,11 @@ | ||
const github = require('../../plugin') | ||
const {fixupPluginRules} = require('@eslint/compat') | ||
|
||
module.exports = { | ||
plugins: {github: fixupPluginRules(github)}, | ||
rules: { | ||
'github/authenticity-token': 'error', | ||
'github/js-class-name': 'error', | ||
'github/no-d-none': 'error', | ||
}, | ||
} |
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,48 @@ | ||
const github = require('../../plugin') | ||
const jsxA11yPlugin = require('eslint-plugin-jsx-a11y') | ||
const {fixupPluginRules} = require('@eslint/compat') | ||
|
||
module.exports = { | ||
...jsxA11yPlugin.flatConfigs.recommended, | ||
languageOptions: { | ||
sourceType: 'module', | ||
parserOptions: { | ||
ecmaFeatures: { | ||
jsx: true, | ||
}, | ||
}, | ||
}, | ||
plugins: {github: fixupPluginRules(github), jsxA11yPlugin}, | ||
rules: { | ||
'jsxA11yPlugin/role-supports-aria-props': 'off', // Override with github/a11y-role-supports-aria-props until https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues/910 is resolved | ||
'github/a11y-aria-label-is-well-formatted': 'error', | ||
'github/a11y-no-visually-hidden-interactive-element': 'error', | ||
'github/a11y-no-title-attribute': 'error', | ||
'github/a11y-svg-has-accessible-name': 'error', | ||
'github/a11y-role-supports-aria-props': 'error', | ||
'jsxA11yPlugin/no-aria-hidden-on-focusable': 'error', | ||
'jsxA11yPlugin/no-autofocus': 'off', | ||
'jsxA11yPlugin/anchor-ambiguous-text': [ | ||
'error', | ||
{ | ||
words: ['this', 'more', 'read here', 'read more'], | ||
}, | ||
], | ||
'jsxA11yPlugin/no-interactive-element-to-noninteractive-role': [ | ||
'error', | ||
{ | ||
tr: ['none', 'presentation'], | ||
td: ['cell'], // TODO: Remove once https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/pull/937#issuecomment-1638128318 is addressed. | ||
canvas: ['img'], | ||
}, | ||
], | ||
'jsxA11yPlugin/no-redundant-roles': [ | ||
'error', | ||
{ | ||
nav: ['navigation'], // default in eslint-plugin-jsx-a11y | ||
tbody: ['rowgroup'], | ||
thead: ['rowgroup'], | ||
}, | ||
], | ||
}, | ||
} |
Oops, something went wrong.