Skip to content

Commit 8149e9b

Browse files
committed
Refactor plugins page
- converting plugins search to ES module - using npm packages through `snowpack` - adding `snowpack` production build precommit hook using `husky` - linting micro_files using ESLint/semistandard - preventing lockfile generation - adding editorconfig
1 parent 3aec380 commit 8149e9b

25 files changed

+356
-675
lines changed

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_size = 2
7+
indent_style = space
8+
end_of_line = lf
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.html]
13+
indent_size = 4
14+
15+
[*.md]
16+
trim_trailing_whitespace = false

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web_modules

.eslintrc.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
'use strict';
2+
3+
module.exports = {
4+
extends: 'semistandard',
5+
env: { browser: true }
6+
};

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

0 commit comments

Comments
 (0)