Skip to content

Commit bf9f235

Browse files
author
Explv
committed
Linting, refactoring, upgrading deps, using webpack & package.json
1 parent fc60ed6 commit bf9f235

117 files changed

Lines changed: 11525 additions & 2763 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es6: true,
5+
},
6+
extends: 'airbnb-base',
7+
globals: {
8+
Atomics: 'readonly',
9+
SharedArrayBuffer: 'readonly',
10+
},
11+
parserOptions: {
12+
ecmaVersion: 2018,
13+
sourceType: 'module',
14+
},
15+
rules: {
16+
"no-bitwise": 0,
17+
"no-underscore-dangle": 0,
18+
"max-len": ["error", { "code": 120 }]
19+
},
20+
};

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

css/external/bootstrap-theme.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/external/bootstrap.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/external/jquery-ui.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/fonts/glyphicons-halflings-regular.svg

Lines changed: 1 addition & 1 deletion
Loading

css/main.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
}
55

66
html, body {
7-
padding: 0;
87
margin: 0;
98
width: 100%;
109
height: 100%;
@@ -270,4 +269,4 @@ input[type="number"] {
270269
-ms-user-select: none; /* Internet Explorer/Edge */
271270
user-select: none; /* Non-prefixed version, currently
272271
supported by Chrome and Opera */
273-
}
272+
}
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)