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.
Files changed (3) hide show
  1. package/.editorconfig +9 -4
  2. package/.nvmrc +1 -1
  3. 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
- [{.babelrc,bower.json,nodemon.json,*.yml}]
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
- [{*.markdown,*.md,*.mdown,*.mkd,*.mkdn,*.text}] # https://superuser.com/questions/249436/file-extension-for-markdown-files/285878#285878
38
- trim_trailing_whitespace = false # https://stackoverflow.com/editing-help#linebreaks
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
- 16.14.0
1
+ 18.18.0
package/package.json CHANGED
@@ -1,42 +1,45 @@
1
1
  {
2
- "name": "node-editorconfig",
3
- "version": "1.2.2",
4
- "description": "A generic .editorconfig for Node JS projects. $ npm i -g node-editorconfig ; node-editorconfig",
5
- "bin": {
6
- "node-editorconfig": "./copy-editorconfig-to-cwd.js"
7
- },
8
- "scripts": {
9
- "lint": "eslint .",
10
- "test": "npm run lint"
11
- },
12
- "repository": {
13
- "type": "git",
14
- "url": "git+https://github.com/webextensions/node-editorconfig.git"
15
- },
16
- "dependencies": {
17
- "cp-file": "^9.1.0"
18
- },
19
- "devDependencies": {
20
- "eslint": "^8.9.0"
21
- },
22
- "keywords": [
23
- "generic",
24
- "setup",
25
- "init",
26
- "initialize",
27
- "default",
28
- "editorconfig",
29
- ".editorconfig",
30
- "node",
31
- "js",
32
- "NodeJS",
33
- "Node.js",
34
- "project"
35
- ],
36
- "author": "Priyank Parashar",
37
- "license": "MIT",
38
- "bugs": {
39
- "url": "https://github.com/webextensions/node-editorconfig/issues"
40
- },
41
- "homepage": "https://github.com/webextensions/node-editorconfig#readme"
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
  }