-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hotkeys and major file restructuring (#393)
* update dist * this works * start restructuring * restructuring * small keymapper updates * mode color UI * reordering * port all collection actions to shared actions * update keybinding to R * update keybinding to R * update tests * reinstate commented out tests * fix opacity tool * add new line to file * rebase and fix lint * RotateScale -> FreeScale * free rotate * update lock mode convntion * restructures * add grayscale for disabled icons * fix implementation * begin README updates * a little more lock convention cleaning * fix disabled keybindings * more README updates * bump to 0.8.0 * update readme more * fix keymapper linting accident * eymapper fixup * remove unneccesary class * final sweep * updates * update lint * update * fix linting * spec * file modifications * fix one forgotten var * refacotr * fix one more bug * final? * final
- Loading branch information
1 parent
075e335
commit 85520ed
Showing
44 changed files
with
1,770 additions
and
1,613 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
node_modules | ||
test/src/util | ||
test/src/*Spec.js | ||
test/* | ||
Gruntfile.js | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,39 @@ | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
}, | ||
"extends": "google", | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 2018 | ||
}, | ||
"rules": { | ||
"env": { | ||
"browser": true, | ||
}, | ||
"extends": "google", | ||
"globals": { | ||
"Atomics": "readonly", | ||
"SharedArrayBuffer": "readonly" | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 2018 | ||
}, | ||
"rules": { | ||
/* | ||
* include rules you want to enforce/suppress/disable here | ||
* they can be set to "off"(0) or "warn"(1) or "error"(2) | ||
* for eg., "semi": "warn" or "semi": 1, that will display | ||
* warnings for all snippets where semicolons aren't used | ||
* but won't throw an error | ||
*/ | ||
|
||
/* | ||
* include rules you want to enforce/suppress/disable here | ||
* they can be set to "off"(0) or "warn"(1) or "error"(2) | ||
* for eg., "semi": "warn" or "semi": 1, that will display | ||
* warnings for all snippets where semicolons aren't used | ||
* but won't throw an error | ||
*/ | ||
/* | ||
* some rules have properties that can be modified for eg., | ||
* "quotes": ["error", "double"], i.e., display errors(2) | ||
* (see above) ÿhen double quotes aren't used. | ||
*/ | ||
|
||
/* | ||
* some rules have properties that can be modified for eg., | ||
* "quotes": ["error", "double"], i.e., display errors(2) | ||
* (see above) when double quotes aren't used. | ||
*/ | ||
|
||
/* rules */ | ||
"curly": ["error", "multi-line"], | ||
"brace-style": ["off", "1tbs", { "allowSingleLine": true }], | ||
"block-spacing": ["error", "always"], | ||
"no-var": 0, | ||
"new-cap": 0, | ||
"guard-for-in": 0, | ||
"max-len": ["warn", { "ignoreComments": true }], | ||
"prefer-const": 1, | ||
"valid-jsdoc": 2 | ||
} | ||
/* rules */ | ||
"curly": ["error", "multi-line"], | ||
"brace-style": ["off", "1tbs", { "allowSingleLine": true }], | ||
"block-spacing": ["error", "always"], | ||
"no-var": 0, | ||
"new-cap": 0, | ||
"guard-for-in": 0, | ||
"max-len": ["warn", { "ignoreComments": true }], | ||
"prefer-const": 1, | ||
"valid-jsdoc": 0 | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.