mirror of
https://github.com/tweenjs/tween.js.git
synced 2026-02-01 17:27:10 +00:00
22 lines
676 B
JavaScript
22 lines
676 B
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
extends: [
|
|
// Uses the recommended rules from the @typescript-eslint/eslint-plugin
|
|
'plugin:@typescript-eslint/recommended',
|
|
// Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
|
|
'prettier/@typescript-eslint',
|
|
// Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
|
|
'plugin:prettier/recommended',
|
|
],
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
},
|
|
globals: {},
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
sourceType: 'module',
|
|
},
|
|
rules: {},
|
|
}
|