-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into exhaustive-pattern-tests
- Loading branch information
Showing
565 changed files
with
23,145 additions
and
3,272 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,179 @@ | ||
/** @type {import('eslint').Linter.Config} */ | ||
module.exports = { | ||
root: true, | ||
plugins: ['jsdoc'], | ||
extends: 'eslint:recommended', | ||
rules: { | ||
'no-use-before-define': ['error', { 'functions': false, 'classes': false }], | ||
|
||
// stylistic rules | ||
'brace-style': ['warn', '1tbs', { allowSingleLine: true }], | ||
'no-tabs': ['warn', { allowIndentationTabs: true }], | ||
'no-var': 'error', | ||
'quotes': ['warn', 'single', { avoidEscape: true, allowTemplateLiterals: true }], | ||
'semi': 'warn', | ||
'wrap-iife': 'warn', | ||
|
||
// spaces | ||
'arrow-spacing': 'warn', | ||
'block-spacing': 'warn', | ||
'comma-spacing': 'warn', | ||
'computed-property-spacing': 'warn', | ||
'func-call-spacing': 'warn', | ||
'generator-star-spacing': 'warn', | ||
'key-spacing': 'warn', | ||
'keyword-spacing': 'warn', | ||
'no-multi-spaces': ['warn', { ignoreEOLComments: true }], | ||
'no-trailing-spaces': 'warn', | ||
'no-whitespace-before-property': 'warn', | ||
'object-curly-spacing': ['warn', 'always'], | ||
'rest-spread-spacing': 'warn', | ||
'semi-spacing': 'warn', | ||
'space-before-blocks': 'warn', | ||
'space-before-function-paren': ['warn', { named: 'never' }], | ||
'space-in-parens': 'warn', | ||
'space-infix-ops': ['warn', { int32Hint: true }], | ||
'space-unary-ops': 'warn', | ||
'switch-colon-spacing': 'warn', | ||
'template-curly-spacing': 'warn', | ||
'yield-star-spacing': 'warn', | ||
|
||
// JSDoc | ||
'jsdoc/check-alignment': 'warn', | ||
'jsdoc/check-syntax': 'warn', | ||
'jsdoc/check-param-names': 'warn', | ||
'jsdoc/require-hyphen-before-param-description': ['warn', 'never'], | ||
'jsdoc/check-tag-names': 'warn', | ||
'jsdoc/check-types': 'warn', | ||
'jsdoc/empty-tags': 'warn', | ||
'jsdoc/newline-after-description': 'warn', | ||
'jsdoc/require-param-name': 'warn', | ||
'jsdoc/require-property-name': 'warn', | ||
|
||
// I turned this rule off because we use `hasOwnProperty` in a lot of places | ||
// TODO: Think about re-enabling this rule | ||
'no-prototype-builtins': 'off', | ||
// TODO: Think about re-enabling this rule | ||
'no-inner-declarations': 'off', | ||
// TODO: Think about re-enabling this rule | ||
'no-sparse-arrays': 'off', | ||
|
||
// turning off some regex rules | ||
// these are supposed to protect against accidental use but we need those quite often | ||
'no-control-regex': 'off', | ||
'no-empty-character-class': 'off', | ||
'no-useless-escape': 'off' | ||
}, | ||
settings: { | ||
jsdoc: { mode: 'typescript' } | ||
}, | ||
ignorePatterns: [ | ||
'*.min.js', | ||
'vendor/', | ||
'docs/', | ||
'components.js', | ||
'prism.js', | ||
'node_modules' | ||
], | ||
|
||
overrides: [ | ||
{ | ||
// Languages and plugins | ||
files: [ | ||
'components/*.js', | ||
'plugins/*/prism-*.js' | ||
], | ||
excludedFiles: 'components/index.js', | ||
env: { | ||
browser: true, | ||
node: true, | ||
worker: true | ||
}, | ||
globals: { | ||
'Prism': true | ||
}, | ||
rules: { | ||
'no-var': 'off' | ||
} | ||
}, | ||
{ | ||
// `loadLanguages` function for Node.js | ||
files: 'components/index.js', | ||
env: { | ||
es6: true, | ||
node: true | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 6 | ||
}, | ||
globals: { | ||
'Prism': true | ||
} | ||
}, | ||
{ | ||
// Gulp and Danger | ||
files: 'dependencies.js', | ||
env: { | ||
browser: true, | ||
node: true | ||
}, | ||
rules: { | ||
'no-var': 'off' | ||
} | ||
}, | ||
{ | ||
// The scripts that run on our website | ||
files: 'assets/*.js', | ||
env: { | ||
browser: true | ||
}, | ||
globals: { | ||
'components': true, | ||
'getLoader': true, | ||
'PrefixFree': true, | ||
'Prism': true, | ||
'Promise': true, | ||
'saveAs': true, | ||
'$': true, | ||
'$$': true, | ||
'$u': true | ||
}, | ||
rules: { | ||
'no-var': 'off' | ||
} | ||
}, | ||
{ | ||
// Test files | ||
files: 'tests/**', | ||
env: { | ||
es6: true, | ||
mocha: true, | ||
node: true | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 2018 | ||
} | ||
}, | ||
{ | ||
// Gulp and Danger | ||
files: [ | ||
'gulpfile.js/**', | ||
'dangerfile.js' | ||
], | ||
env: { | ||
es6: true, | ||
node: true | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 2018 | ||
} | ||
}, | ||
{ | ||
// This file | ||
files: '.eslintrc.js', | ||
env: { | ||
node: true | ||
} | ||
}, | ||
] | ||
}; |
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,4 @@ | ||
contact_links: | ||
- name: Questions and Help | ||
url: https://github.com/PrismJS/prism/discussions/categories/q-a | ||
about: This issue tracker is not for support questions. Please refer to the Prism's Discussion tab. |
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 |
---|---|---|
|
@@ -19,3 +19,4 @@ gulpfile.js | |
.editorconfig | ||
.gitattributes | ||
.travis.yml | ||
.eslintrc.js |
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
Oops, something went wrong.