node-editorconfig 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +9 -4
- package/.nvmrc +1 -1
- package/package.json +43 -40
package/.editorconfig
CHANGED
|
@@ -25,17 +25,22 @@ indent_style = space
|
|
|
25
25
|
insert_final_newline = true
|
|
26
26
|
trim_trailing_whitespace = true
|
|
27
27
|
|
|
28
|
-
[{
|
|
28
|
+
[{*.yml}]
|
|
29
29
|
indent_size = 2
|
|
30
30
|
|
|
31
31
|
[Makefile]
|
|
32
32
|
indent_style = tab
|
|
33
33
|
|
|
34
|
-
[{*.json,.nvmrc,*.svg}]
|
|
34
|
+
[{*.json,.node-version,.nvmrc,*.svg}]
|
|
35
35
|
insert_final_newline = false
|
|
36
36
|
|
|
37
|
-
[{
|
|
38
|
-
|
|
37
|
+
[{nodemon.json}]
|
|
38
|
+
insert_final_newline = true
|
|
39
|
+
|
|
40
|
+
# https://superuser.com/questions/249436/file-extension-for-markdown-files/285878#285878
|
|
41
|
+
# [{*.markdown,*.md,*.mdown,*.mkd,*.mkdn,*.text}]
|
|
42
|
+
[{*.md}]
|
|
43
|
+
trim_trailing_whitespace = false # https://stackoverflow.com/editing-help#linebreaks
|
|
39
44
|
|
|
40
45
|
[/node_modules/**] # Glob/minimatch pattern to match the "node_modules" directory at the project root
|
|
41
46
|
charset = unset
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
18.18.0
|
package/package.json
CHANGED
|
@@ -1,42 +1,45 @@
|
|
|
1
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
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
2
|
+
"name": "node-editorconfig",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"description": "A generic .editorconfig for Node JS projects. $ npm i -g node-editorconfig ; node-editorconfig",
|
|
5
|
+
"engines": {
|
|
6
|
+
"node": ">=18"
|
|
7
|
+
},
|
|
8
|
+
"bin": {
|
|
9
|
+
"node-editorconfig": "./copy-editorconfig-to-cwd.js"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"lint": "eslint .",
|
|
13
|
+
"test": "npm run lint"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/webextensions/node-editorconfig.git"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"cp-file": "=9.1.0"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"eslint": "^8.51.0"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"generic",
|
|
27
|
+
"setup",
|
|
28
|
+
"init",
|
|
29
|
+
"initialize",
|
|
30
|
+
"default",
|
|
31
|
+
"editorconfig",
|
|
32
|
+
".editorconfig",
|
|
33
|
+
"node",
|
|
34
|
+
"js",
|
|
35
|
+
"NodeJS",
|
|
36
|
+
"Node.js",
|
|
37
|
+
"project"
|
|
38
|
+
],
|
|
39
|
+
"author": "Priyank Parashar",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/webextensions/node-editorconfig/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/webextensions/node-editorconfig#readme"
|
|
42
45
|
}
|