mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
24 lines
473 B
JavaScript
24 lines
473 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
node: true,
|
|
mocha: true,
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
|
globals: {
|
|
Atomics: 'readonly',
|
|
SharedArrayBuffer: 'readonly',
|
|
},
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
sourceType: 'module',
|
|
project: __dirname + '/tsconfig.json',
|
|
},
|
|
plugins: ['@typescript-eslint'],
|
|
rules: {
|
|
'no-mixed-spaces-and-tabs': ['off'],
|
|
},
|
|
};
|