()
| 3 | |
| 4 | class BaseRulesFixer extends BaseFixer { |
| 5 | async run() { |
| 6 | const scss = fs.readFileSync(this.filePath, 'utf8'); |
| 7 | const processedFile = await this.processCss(scss, this.transform()); |
| 8 | return [{ filePath: this.filePath, data: processedFile.css }]; |
| 9 | } |
| 10 | |
| 11 | transform() { |
| 12 | const self = this; |
no test coverage detected