forked from nordtheme/visual-studio-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
27 lines (26 loc) · 860 Bytes
/
.eslintrc.js
File metadata and controls
27 lines (26 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
* Copyright (C) 2017-present Sven Greb <development@svengreb.de>
*
* Project: Nord Visual Studio Code
* Repository: https://github.com/arcticicestudio/nord-visual-studio-code
* License: MIT
*/
/**
* Configurations for ESLint.
*
* @see https://eslint.org/docs/user-guide/configuring
*/
module.exports = {
extends: [
"plugin:jsonc/recommended-with-jsonc",
"@arcticicestudio/eslint-config-base",
/*
* Enable support for projects using Prettier.
* Note that this must always be placed after the `@arcticicestudio/eslint-config-base` preset to take precedence,
* otherwise it won't prevent errors due to useless and possibly conflicting rules!
*/
"@arcticicestudio/eslint-config-base/prettier",
],
plugins: ["jsonc"],
};