Skip to content

Commit cae2058

Browse files
committed
Align plugin with other core plugins. Update package.json, generate changelog, fix debug namespace
1 parent 79b7137 commit cae2058

22 files changed

+6918
-267
lines changed

.editorconfig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
root = true
2-
31
[*]
2+
charset = utf-8
3+
4+
[*.{js,json,yml}]
45
indent_style = space
56
indent_size = 2
6-
end_of_line = lf
7-
charset = utf-8
8-
trim_trailing_whitespace = true
7+
end_of_line = lf
98
insert_final_newline = true
9+
trim_trailing_whitespace = true
1010

1111
[*.md]
12-
trim_trailing_whitespace = false
12+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 25 deletions
This file was deleted.

.eslintrc.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
env:
2+
node: true
3+
es6: true
4+
extends:
5+
- 'eslint:recommended'
6+
- 'prettier'
7+
parserOptions:
8+
ecmaVersion: 2017

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Automatically normalize line endings for all text-based files
2+
# http://git-scm.com/docs/gitattributes#_end_of_line_conversion
3+
* text=auto eol=lf
4+
5+
# For binary file types, prevent converting CRLF chars
6+
*.jpg -text
7+
*.png -text

.gitignore

Lines changed: 5 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,8 @@
1-
# Logs
2-
logs
3-
*.log
41
npm-debug.log*
5-
.nyc_output
6-
7-
# Runtime data
8-
pids
9-
*.pid
10-
*.seed
11-
12-
# Directory for instrumented libs generated by jscoverage/JSCover
13-
lib-cov
14-
15-
# Coverage directory used by tools like istanbul
16-
coverage
17-
18-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
19-
.grunt
20-
21-
# node-waf configuration
22-
.lock-wscript
23-
24-
# Compiled binary addons (http://nodejs.org/api/addons.html)
25-
build/Release
26-
27-
# Dependency directory
28-
node_modules
29-
30-
# Optional npm cache directory
312
.npm
32-
33-
# Optional REPL history
34-
.node_repl_history
35-
36-
# Package Lock
37-
package-lock.json
38-
39-
# ESLint Cache
3+
*.tgz
404
.eslintcache
5+
.nyc_output
6+
coverage.info
7+
test/fixtures/*/build
8+
node_modules

.npmrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
package-lock=false
1+
package-lock.json = false
2+
sign-git-tag = true
3+
message = Bump package.json to %s

.prettierignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
package-lock.json
2-
package.json
1+
test/fixtures/**
2+
.nyc_output/**
3+
package-lock.json

.prettierrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.prettierrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
trailingComma: none
2+
tabWidth: 2
3+
semi: false
4+
singleQuote: true
5+
bracketSpacing: true
6+
arrowParens: always
7+
printWidth: 120

0 commit comments

Comments
 (0)