Update gulpfile.js

Removed warning for ms-DetailsList
This commit is contained in:
Hugo Bernier 2020-04-24 22:25:06 -04:00 committed by GitHub
parent c7cf52d2da
commit 47db9d29ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -3,5 +3,6 @@
const gulp = require('gulp'); const gulp = require('gulp');
const build = require('@microsoft/sp-build-web'); const build = require('@microsoft/sp-build-web');
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`); build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
build.addSuppression(`Warning - [sass] The local CSS class 'ms-DetailsList' is not camelCase and will not be type-safe.`);
build.initialize(gulp); build.initialize(gulp);