Skip to content

Commit a0de811

Browse files
committed
Removed linting from this task - added it to superfly-css-task-lint
1 parent 1790fc7 commit a0de811

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "superfly-css-task-build",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Build task for superfly-css modules",
55
"main": "src/main/js/index.js",
66
"scripts": {
@@ -33,9 +33,7 @@
3333
"postcss-each": "^0.9.3",
3434
"postcss-import": "^9.1.0",
3535
"postcss-reporter": "^3.0.0",
36-
"stylelint": "^7.8.0",
3736
"superfly-css-pli": "0.0.7",
38-
"stylelint-config-standard": "^16.0.0"
3937
},
4038
"peerDependencies": {
4139
"gulp": "3.x"

src/main/js/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ var postcss_color_function = require('postcss-color-function');
77
var postcss_each = require('postcss-each');
88
var postcss_reporter = require('postcss-reporter');
99
var autoprefixer = require('autoprefixer');
10-
var stylelint = require('stylelint');
11-
var stylelint_config = require('stylelint-config-standard');
1210

1311
var PLI = require('superfly-css-pli');
1412

15-
var processors = [postcss_import, postcss_each, autoprefixer, postcss_custom_properties, postcss_calc, postcss_color_function, stylelint(stylelint_config), postcss_reporter({
13+
var processors = [postcss_import, postcss_each, autoprefixer, postcss_custom_properties, postcss_calc, postcss_color_function, postcss_reporter({
1614
clearMessages: true
1715
})];
1816

0 commit comments

Comments
 (0)