Skip to content

Commit

Permalink
feat(nxt-dropzone-wrapper): cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
HitkoDev committed Mar 3, 2023
1 parent 99e7cce commit 43871d2
Show file tree
Hide file tree
Showing 27 changed files with 1,063 additions and 1,224 deletions.
44 changes: 44 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"extends": "stylelint-config-standard-scss",
"rules": {
"indentation": 4,
"no-descending-specificity": null,
"selector-class-pattern": null,
"max-line-length": null,
"no-duplicate-selectors": null,
"at-rule-empty-line-before": null,
"alpha-value-notation": "number",
"color-function-notation": "legacy",
"declaration-block-no-redundant-longhand-properties": null,
"shorthand-property-no-redundant-values": null,
"selector-attribute-quotes": "never",
"selector-pseudo-element-colon-notation": "single",
"number-max-precision": null,
"color-hex-length": null,
"function-name-case": null,
"scss/at-import-partial-extension": null,
"scss/no-global-function-names": null,
"hue-degree-notation": "number",
"scss/dollar-variable-pattern": null,
"scss/dollar-variable-empty-line-before": null,
"scss/at-import-no-partial-leading-underscore": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/double-slash-comment-whitespace-inside": null,
"no-invalid-position-at-import-rule": null,
"no-empty-source": null,
"keyframes-name-pattern": null,
"block-no-empty": null,
"scss/comment-no-empty": null,
"selector-id-pattern": null,
"value-list-max-empty-lines": 1,
"function-max-empty-lines": 1,
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"ng-deep"
]
}
]
}
}
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@
"@angular/common": "<15.0.0",
"@angular/compiler": "<15.0.0",
"@angular/core": "<15.0.0",
"@angular/flex-layout": "^14.0.0-beta.41",
"@angular/forms": "<15.0.0",
"@angular/platform-browser": "<15.0.0",
"@angular/platform-browser-dynamic": "<15.0.0",
"@angular/platform-server": "<15.0.0",
"@angular/router": "<15.0.0",
"dropzone": "^6.0.0-beta.2",
"rxjs": "^7.8.0",
"tslib": "^2.3.0",
"zone.js": "^0.12.0"
Expand Down Expand Up @@ -60,6 +62,8 @@
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "<14.3.0",
"npm-check-updates": "^16.7.9",
"stylelint": "^15.2.0",
"stylelint-config-standard-scss": "^7.0.1",
"typescript": ">=4.8 <4.9"
}
}
3 changes: 3 additions & 0 deletions packages/demo/.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../.stylelintrc.json"
}
7 changes: 6 additions & 1 deletion packages/demo/src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'

const routes: Routes = []
const routes: Routes = [
{
path: 'dropzone-wrapper',
loadChildren: () => import('./dropzone-wrapper/dropzone-wrapper.module').then(m => m.AppModule)
}
]

@NgModule({
imports: [RouterModule.forRoot(routes)],
Expand Down
Loading

0 comments on commit 43871d2

Please sign in to comment.