Skip to content

Commit

Permalink
Merge pull request #76 from Nightapes/fix_directive
Browse files Browse the repository at this point in the history
fix(directives): don't trigger validation changed on the first ngOnChanges call
  • Loading branch information
Nightapes authored Apr 21, 2020
2 parents 6958bb0 + 221fda2 commit b75c6af
Show file tree
Hide file tree
Showing 199 changed files with 2,662 additions and 2,741 deletions.
19 changes: 0 additions & 19 deletions .eslintrc.json

This file was deleted.

4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dist
node_modules
package-lock.json
coverage
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": false,
"printWidth": 120
}
44 changes: 22 additions & 22 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
"editor.tabSize": 4,
// Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
"editor.insertSpaces": true,
// Controls if the editor should automatically format the line after typing
"editor.formatOnType": false,
// The default character set encoding to use when reading and writing files.
"files.encoding": "utf8",
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": false,
// Control whether tslint is enabled for TypeScript files or not.
"tslint.enable": true,
"typescript.tsdk": "node_modules/typescript/lib",
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true,
"node_modules": true,
"examples": true,
"coverage/": true,
"dist/": true
}
}
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
"editor.tabSize": 4,
// Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
"editor.insertSpaces": true,
// Controls if the editor should automatically format the line after typing
"editor.formatOnType": false,
// The default character set encoding to use when reading and writing files.
"files.encoding": "utf8",
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": false,
// Control whether tslint is enabled for TypeScript files or not.
"tslint.enable": true,
"typescript.tsdk": "node_modules/typescript/lib",
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true,
"node_modules": true,
"examples": true,
"coverage/": true,
"dist/": true
}
}
Loading

0 comments on commit b75c6af

Please sign in to comment.