mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-03-18 03:51:08 +02:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
// Split from .eslintrc, so that the default eslintrc can still show error for ts-nocheck
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'./.eslintrc.cjs',
|
|
],
|
|
rules: {
|
|
'@typescript-eslint/ban-ts-comment': ['error', { 'ts-nocheck': false }]
|
|
}
|
|
};
|