-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ROU-4744: updating Data Grid configs (#393)
This PR is for updating the configurations of the Data Grid, to change how the docs and the compilation are done. ### What was happening * The configurations were outdated and inconsistent with OutSystems UI repo ### What was done * Updated the configs to match OutSystems UI * Updated versions of dev libraries ### Checklist * [x] tested locally * [ ] documented the code * [x] clean all warnings and errors of eslint * [ ] requires changes in OutSystems (if so, provide a module with changes) * [ ] requires new sample page in OutSystems (if so, provide a module with changes)
- Loading branch information
Showing
26 changed files
with
4,171 additions
and
5,641 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 |
---|---|---|
|
@@ -5,4 +5,6 @@ dist | |
# don't lint libraries | ||
src/libraries/** | ||
*.d.ts | ||
*.js | ||
*.js | ||
# don't lint settings | ||
*.snyk |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ dist | |
|
||
/*.bat | ||
|
||
|
||
docs/ |
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,3 +1,8 @@ | ||
/* prettier-ignore */ | ||
*.md | ||
*.d.ts | ||
dist | ||
dependencies | ||
node_modules | ||
|
||
*.css | ||
|
||
# don't lint settings | ||
*.snyk |
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,7 +1,10 @@ | ||
{ | ||
"bracketSpacing": true, | ||
"endOfLine": "auto", | ||
"trailingComma": "none", | ||
"tabWidth": 4, | ||
"printWidth": 120, | ||
"semi": true, | ||
"singleQuote": true | ||
} | ||
"singleQuote": true, | ||
"tabWidth": 4, | ||
"trailingComma": "es5", | ||
"useTabs": true | ||
} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
exclude: | ||
global: | ||
- gulp/** | ||
- pipelines/** | ||
- docs/** |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
dist | ||
dependencies | ||
node_modules | ||
src/static/** | ||
|
||
*.css | ||
|
||
# don't lint settings | ||
*.snyk |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"extends": "stylelint-config-prettier", | ||
"plugins": [ | ||
"stylelint-order" | ||
], | ||
"rules": { | ||
"order/order": [ | ||
[ | ||
"dollar-variables", | ||
"at-rules", | ||
"declarations", | ||
"rules", | ||
"custom-properties" | ||
] | ||
], | ||
"order/properties-alphabetical-order": true, | ||
"max-line-length": 170 | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.