2018-11-08 06:48:01 +00:00
|
|
|
module.exports = {
|
2019-11-23 13:02:51 +00:00
|
|
|
extends: ["ash-nazg/sauron-node"],
|
2018-11-16 07:15:17 +00:00
|
|
|
parserOptions: {
|
|
|
|
sourceType: "module"
|
2018-11-08 06:48:01 +00:00
|
|
|
},
|
2018-11-16 07:15:17 +00:00
|
|
|
env: {
|
|
|
|
browser: true
|
2018-11-08 06:48:01 +00:00
|
|
|
},
|
2018-11-16 07:15:17 +00:00
|
|
|
settings: {
|
2019-03-31 09:39:19 +00:00
|
|
|
polyfills: [
|
|
|
|
],
|
2018-11-16 07:15:17 +00:00
|
|
|
jsdoc: {
|
|
|
|
additionalTagNames: {
|
2018-11-08 06:48:01 +00:00
|
|
|
// In case we need to extend
|
2018-11-16 07:15:17 +00:00
|
|
|
customTags: []
|
2018-11-08 06:48:01 +00:00
|
|
|
},
|
2019-05-24 12:17:17 +00:00
|
|
|
augmentsExtendsReplacesDocs: true,
|
2019-05-23 00:55:52 +00:00
|
|
|
// Todo: Figure out why this is not working and why seem to have to
|
|
|
|
// disable for all Markdown:
|
|
|
|
/*
|
|
|
|
baseConfig: {
|
|
|
|
rules: {
|
|
|
|
"no-multi-spaces": "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2018-11-08 06:48:01 +00:00
|
|
|
}
|
|
|
|
},
|
2018-11-16 07:15:17 +00:00
|
|
|
overrides: [
|
2018-11-08 06:48:01 +00:00
|
|
|
// Locales have no need for importing outside of SVG-Edit
|
|
|
|
{
|
2018-11-16 07:15:17 +00:00
|
|
|
files: [
|
2018-11-08 06:48:01 +00:00
|
|
|
"editor/locale/lang.*.js", "editor/extensions/ext-locale/**",
|
|
|
|
"docs/tutorials/ExtensionDocs.md"
|
|
|
|
],
|
2018-11-16 07:15:17 +00:00
|
|
|
rules: {
|
2018-11-08 06:48:01 +00:00
|
|
|
"import/no-anonymous-default-export": ["off"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// These browser files don't do importing or requiring
|
|
|
|
{
|
2018-11-16 07:15:17 +00:00
|
|
|
files: [
|
2018-11-08 06:48:01 +00:00
|
|
|
"editor/svgpathseg.js", "editor/touch.js", "editor/typedefs.js",
|
|
|
|
"editor/redirect-on-no-module-support.js",
|
|
|
|
"editor/extensions/imagelib/index.js",
|
|
|
|
"editor/external/dom-polyfill/dom-polyfill.js",
|
2019-11-24 03:29:24 +00:00
|
|
|
"screencasts/svgopen2010/script.js",
|
2018-11-08 06:48:01 +00:00
|
|
|
"opera-widget/handlers.js",
|
|
|
|
"firefox-extension/handlers.js",
|
|
|
|
"firefox-extension/content/svg-edit-overlay.js"
|
|
|
|
],
|
2018-11-16 07:15:17 +00:00
|
|
|
rules: {
|
2018-11-08 06:48:01 +00:00
|
|
|
"import/unambiguous": ["off"]
|
|
|
|
}
|
|
|
|
},
|
2019-07-02 04:21:21 +00:00
|
|
|
{
|
2020-01-06 14:51:29 +00:00
|
|
|
files: ['**/*.html', 'screencasts/**'],
|
|
|
|
globals: {
|
|
|
|
root: "off"
|
|
|
|
},
|
|
|
|
settings: {
|
|
|
|
polyfills: [
|
|
|
|
'document.querySelector',
|
|
|
|
'history.pushState',
|
|
|
|
'history.replaceState'
|
|
|
|
]
|
|
|
|
},
|
2019-07-02 04:21:21 +00:00
|
|
|
rules: {
|
|
|
|
'import/unambiguous': 'off'
|
|
|
|
}
|
|
|
|
},
|
2018-11-08 06:48:01 +00:00
|
|
|
// Our Markdown rules (and used for JSDoc examples as well, by way of
|
2020-01-02 11:52:46 +00:00
|
|
|
// our use of `jsdoc/check-examples` within `ash-nazg`)
|
2018-11-08 06:48:01 +00:00
|
|
|
{
|
2018-11-16 07:15:17 +00:00
|
|
|
files: ["**/*.md"],
|
2020-01-06 14:51:29 +00:00
|
|
|
settings: {
|
|
|
|
polyfills: [
|
|
|
|
// Tutorials
|
|
|
|
'console',
|
|
|
|
'location.href'
|
|
|
|
]
|
|
|
|
},
|
2018-11-16 07:15:17 +00:00
|
|
|
rules: {
|
2018-11-08 06:48:01 +00:00
|
|
|
"eol-last": ["off"],
|
|
|
|
"no-console": ["off"],
|
|
|
|
"no-undef": ["off"],
|
|
|
|
"no-unused-vars": ["warn"],
|
|
|
|
"padded-blocks": ["off"],
|
|
|
|
"import/unambiguous": ["off"],
|
|
|
|
"import/no-unresolved": ["off"],
|
2019-05-22 15:37:27 +00:00
|
|
|
"node/no-missing-import": ["off"],
|
|
|
|
"no-multi-spaces": "off",
|
2019-07-02 04:21:21 +00:00
|
|
|
"sonarjs/no-all-duplicated-branches": "off",
|
2019-11-23 13:02:51 +00:00
|
|
|
'node/no-unpublished-import': ['error', {allowModules: ['@cypress/fiddle']}],
|
2019-07-09 00:33:18 +00:00
|
|
|
"no-alert": "off",
|
2019-05-22 15:37:27 +00:00
|
|
|
// Disable until may fix https://github.com/gajus/eslint-plugin-jsdoc/issues/211
|
|
|
|
"indent": "off"
|
2018-11-08 06:48:01 +00:00
|
|
|
}
|
|
|
|
},
|
2019-05-04 15:16:06 +00:00
|
|
|
// Dis-apply Node rules mistakenly giving errors with browser files,
|
|
|
|
// and treating Node global `root` as being present for shadowing
|
2018-11-08 06:48:01 +00:00
|
|
|
{
|
2020-01-06 14:51:29 +00:00
|
|
|
files: ["editor/**"],
|
2019-05-04 15:16:06 +00:00
|
|
|
globals: {
|
|
|
|
root: "off"
|
|
|
|
},
|
2020-01-06 14:51:29 +00:00
|
|
|
settings: {
|
|
|
|
polyfills: [
|
|
|
|
// These are the primary polyfills needed by regular users if not present,
|
|
|
|
// e.g., with core-js-bundle; also those under extensions
|
|
|
|
'Array.isArray',
|
|
|
|
'Blob',
|
|
|
|
'console',
|
|
|
|
'CustomEvent',
|
|
|
|
'document.body',
|
|
|
|
'document.evaluate',
|
|
|
|
'document.head',
|
|
|
|
'document.importNode',
|
|
|
|
'document.querySelectorAll',
|
|
|
|
'DOMParser',
|
|
|
|
'Error',
|
|
|
|
'FileReader',
|
|
|
|
'JSON',
|
|
|
|
'location.href',
|
|
|
|
'MutationObserver',
|
|
|
|
'Object.assign',
|
|
|
|
'Object.defineProperty',
|
|
|
|
'Object.defineProperties',
|
|
|
|
'Object.entries',
|
|
|
|
'Object.getOwnPropertyDescriptor',
|
|
|
|
'Object.keys',
|
|
|
|
'Object.values',
|
|
|
|
'Promise',
|
|
|
|
'Promise.all',
|
|
|
|
'Set',
|
|
|
|
'Uint8Array',
|
|
|
|
'URL',
|
|
|
|
'URL.createObjectURL',
|
|
|
|
'XMLSerializer',
|
|
|
|
'XMLHttpRequest',
|
|
|
|
'window.getComputedStyle',
|
|
|
|
'window.scrollX',
|
|
|
|
'window.scrollY'
|
|
|
|
]
|
|
|
|
},
|
2018-11-16 07:15:17 +00:00
|
|
|
rules: {
|
2019-05-04 15:16:06 +00:00
|
|
|
"node/no-unsupported-features/node-builtins": "off"
|
2018-11-08 06:48:01 +00:00
|
|
|
}
|
|
|
|
},
|
2020-01-06 14:51:29 +00:00
|
|
|
// For extensions, `this` is generally assigned to be the more
|
|
|
|
// descriptive `svgEditor`; they also have no need for importing outside
|
|
|
|
// of SVG-Edit
|
|
|
|
{
|
|
|
|
files: ["editor/extensions/**"],
|
|
|
|
settings: {
|
|
|
|
polyfills: [
|
|
|
|
'console',
|
|
|
|
'fetch',
|
|
|
|
'location.origin',
|
|
|
|
'window.postMessage'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
"consistent-this": ["error", "svgEditor"],
|
|
|
|
"import/no-anonymous-default-export": ["off"]
|
|
|
|
}
|
|
|
|
},
|
2018-11-08 06:48:01 +00:00
|
|
|
{
|
|
|
|
// Node files
|
2018-11-16 07:15:17 +00:00
|
|
|
files: [
|
2018-11-08 06:48:01 +00:00
|
|
|
"docs/jsdoc-config.js",
|
2019-12-21 07:35:19 +00:00
|
|
|
"build/build-html.js",
|
2018-11-08 06:48:01 +00:00
|
|
|
"rollup.config.js", "rollup-config.config.js"
|
|
|
|
],
|
2018-11-16 07:15:17 +00:00
|
|
|
env: {
|
|
|
|
node: true,
|
2018-11-08 06:48:01 +00:00
|
|
|
},
|
2020-01-06 14:51:29 +00:00
|
|
|
settings: {
|
|
|
|
polyfills: [
|
|
|
|
'console',
|
|
|
|
'Promise.resolve'
|
|
|
|
]
|
|
|
|
},
|
2019-05-04 15:16:06 +00:00
|
|
|
globals: {
|
|
|
|
require: true
|
|
|
|
},
|
2018-11-16 07:15:17 +00:00
|
|
|
rules: {
|
2019-05-04 15:16:06 +00:00
|
|
|
// We can't put Rollup in npmignore or user can't get access,
|
|
|
|
// and we have too many modules to add to `peerDependencies`
|
|
|
|
// so this rule can know them to be available, so we instead
|
|
|
|
// disable
|
|
|
|
"node/no-unpublished-import": "off"
|
2018-11-08 06:48:01 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// As consumed by jsdoc, cannot be expressed as ESM
|
2018-11-16 07:15:17 +00:00
|
|
|
files: ["docs/jsdoc-config.js"],
|
|
|
|
parserOptions: {
|
|
|
|
sourceType: "script"
|
2018-11-08 06:48:01 +00:00
|
|
|
},
|
2019-05-04 15:16:06 +00:00
|
|
|
globals: {
|
|
|
|
"module": false
|
|
|
|
},
|
2018-11-16 07:15:17 +00:00
|
|
|
rules: {
|
2019-05-04 15:16:06 +00:00
|
|
|
"import/no-commonjs": "off",
|
|
|
|
"strict": "off"
|
2018-11-08 06:48:01 +00:00
|
|
|
}
|
2019-11-23 13:02:51 +00:00
|
|
|
},
|
2019-11-25 00:40:37 +00:00
|
|
|
{
|
|
|
|
extends: ['plugin:node/recommended-script'],
|
2019-12-21 07:35:19 +00:00
|
|
|
files: [
|
|
|
|
'cypress/support/build-coverage-badge.js',
|
|
|
|
'build/testing-badge.js'
|
|
|
|
]
|
2019-11-25 00:40:37 +00:00
|
|
|
},
|
2020-01-06 14:51:29 +00:00
|
|
|
{
|
|
|
|
// Should probably have as external, but should still check
|
|
|
|
files: ['canvg/rgbcolor.js'],
|
|
|
|
settings: {
|
|
|
|
polyfills: [
|
|
|
|
'Object.assign',
|
|
|
|
'Object.keys'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Misc. probably to remove
|
|
|
|
files: ['firefox-extension/**', 'opera-widget/**'],
|
|
|
|
settings: {
|
|
|
|
polyfills: [
|
|
|
|
'console'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2019-11-23 13:02:51 +00:00
|
|
|
{
|
|
|
|
files: ["cypress/**"],
|
|
|
|
extends: ["plugin:cypress/recommended"],
|
|
|
|
env: {
|
|
|
|
node: true
|
|
|
|
},
|
2020-01-06 14:51:29 +00:00
|
|
|
settings: {
|
|
|
|
polyfills: [
|
|
|
|
'console',
|
|
|
|
'Date.now',
|
|
|
|
'document.body',
|
|
|
|
'document.head',
|
|
|
|
'DOMParser',
|
|
|
|
'Object.keys',
|
|
|
|
'Object.entries',
|
|
|
|
'Promise'
|
|
|
|
]
|
|
|
|
},
|
2019-11-23 13:02:51 +00:00
|
|
|
rules: {
|
2019-11-24 03:29:24 +00:00
|
|
|
'no-console': 0,
|
2019-11-23 13:02:51 +00:00
|
|
|
'import/unambiguous': 0,
|
|
|
|
}
|
2018-11-08 06:48:01 +00:00
|
|
|
}
|
|
|
|
],
|
2018-11-16 07:15:17 +00:00
|
|
|
rules: {
|
2019-11-30 03:41:01 +00:00
|
|
|
// https://github.com/sindresorhus/eslint-plugin-unicorn/issues/453
|
|
|
|
"unicorn/regex-shorthand": 0,
|
2019-11-16 02:08:38 +00:00
|
|
|
// The Babel transform seems to have a problem converting these
|
|
|
|
"prefer-named-capture-group": "off",
|
2018-11-08 06:48:01 +00:00
|
|
|
// Override these `ash-nazg/sauron` rules which are difficult for us
|
|
|
|
// to apply at this time
|
2019-10-01 09:33:36 +00:00
|
|
|
"unicorn/prefer-string-slice": "off",
|
2019-03-31 09:39:19 +00:00
|
|
|
"default-case": "off",
|
|
|
|
"require-unicode-regexp": "off",
|
2018-11-08 06:48:01 +00:00
|
|
|
"max-len": ["off", {
|
2018-11-16 07:15:17 +00:00
|
|
|
ignoreUrls: true,
|
|
|
|
ignoreRegExpLiterals: true
|
2019-02-21 11:41:09 +00:00
|
|
|
}],
|
2019-03-31 09:39:19 +00:00
|
|
|
"unicorn/prefer-query-selector": "off",
|
|
|
|
"unicorn/prefer-node-append": "off",
|
2019-12-31 17:15:16 +00:00
|
|
|
"unicorn/no-zero-fractions": "off",
|
|
|
|
"jsdoc/require-file-overview": ["error", {
|
|
|
|
tags: {
|
|
|
|
file: {
|
|
|
|
"initialCommentsOnly": true,
|
|
|
|
"preventDuplicates": true,
|
|
|
|
},
|
|
|
|
license: {
|
|
|
|
"initialCommentsOnly": true,
|
|
|
|
"preventDuplicates": true,
|
|
|
|
},
|
|
|
|
copyright: {
|
|
|
|
"initialCommentsOnly": true,
|
|
|
|
"preventDuplicates": true,
|
|
|
|
},
|
|
|
|
author: {
|
|
|
|
"initialCommentsOnly": true,
|
|
|
|
"preventDuplicates": true,
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
"initialCommentsOnly": true,
|
|
|
|
"preventDuplicates": true,
|
|
|
|
},
|
|
|
|
exports: {
|
|
|
|
"initialCommentsOnly": true,
|
|
|
|
"preventDuplicates": true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}]
|
2018-11-08 06:48:01 +00:00
|
|
|
}
|
|
|
|
};
|