Skip to content

Commit

Permalink
skip css linting for the test app
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeen committed Mar 21, 2024
1 parent 2949a92 commit f6390b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions test-app/.stylelintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@

# addons
/.node_modules.ember-try/

tests/*
4 changes: 1 addition & 3 deletions test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@
"scripts": {
"build": "ember build --environment=production",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:css": "stylelint \"**/*.css\"",
"lint:css:fix": "concurrently \"npm:lint:css -- --fix\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:hbs": "ember-template-lint .",
"lint:hbs": "ember-template-lint ./**/*.hbs",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* stylelint-disable */
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render, click } from '@ember/test-helpers';
Expand Down

0 comments on commit f6390b0

Please sign in to comment.