1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-17 13:37:29 -06:00
paricafe/packages/sw/.eslintrc.js

22 lines
370 B
JavaScript

module.exports = {
root: true,
env: {
"node": false
},
parserOptions: {
"parser": "@typescript-eslint/parser",
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
extends: [
"../shared/.eslintrc.js",
],
globals: {
"require": false,
"_DEV_": false,
"_LANGS_": false,
"_VERSION_": false,
"_ENV_": false,
"_PERF_PREFIX_": false,
}
}