Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-10-10 05:21:44 +0300
committerMichaël Zasso <targos@protonmail.com>2021-10-13 11:24:42 +0300
commitb72d693a3a824fb02a0faebdc356ae0a2613f33c (patch)
tree3aca2923ac3278831c1df21dd10be3d5a8a7219e /.eslintrc.js
parentd6a99b77da7835610e3d630d79a4b11017b7c4f2 (diff)
tools: remove @bable/plugin-syntax-class-properties
ESLint 8.0.0 makes the plugin unnecessary. PR-URL: https://github.com/nodejs/node/pull/40394 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index d4c0bfa667d..3e1513b2b1f 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -17,7 +17,6 @@ const hacks = [
'eslint-plugin-node-core',
'eslint-plugin-markdown',
'@babel/eslint-parser',
- '@babel/plugin-syntax-class-properties',
'@babel/plugin-syntax-import-assertions',
];
Module._findPath = (request, paths, isMain) => {
@@ -40,7 +39,6 @@ module.exports = {
parserOptions: {
babelOptions: {
plugins: [
- Module._findPath('@babel/plugin-syntax-class-properties'),
Module._findPath('@babel/plugin-syntax-import-assertions'),
],
},