@@ -2,6 +2,8 @@ import fs from 'fs';
2
2
import path from 'path' ;
3
3
4
4
import stripJSONComments from 'strip-json-comments' ;
5
+ import isUTF8 from 'is-utf8' ;
6
+ import stripBom from 'strip-bom' ;
5
7
6
8
import { getNormalizedConfig } from '../configLoader' ;
7
9
@@ -17,7 +19,7 @@ export default getConfigContent;
17
19
function readConfigContent ( configPath ) {
18
20
const parsedPath = path . parse ( configPath )
19
21
const isRcFile = parsedPath . ext !== '.js' && parsedPath . ext !== '.json' ;
20
- const jsonString = fs . readFileSync ( configPath , 'utf-8' ) ;
22
+ const jsonString = readConfigFileContent ( configPath ) ;
21
23
const parse = isRcFile ?
22
24
( contents ) => JSON . parse ( stripJSONComments ( contents ) ) :
23
25
( contents ) => JSON . parse ( contents ) ;
@@ -61,3 +63,20 @@ function getConfigContent (configPath, baseDirectory) {
61
63
const content = readConfigContent ( resolvedPath ) ;
62
64
return getNormalizedConfig ( configBasename , content ) ;
63
65
} ;
66
+
67
+ /**
68
+ * Read proper content from config file.
69
+ * If the chartset of the config file is not utf-8, one error will be thrown.
70
+ * @param {String } configPath
71
+ * @return {String }
72
+ */
73
+ function readConfigFileContent ( configPath ) {
74
+
75
+ let rawBufContent = fs . readFileSync ( configPath ) ;
76
+
77
+ if ( ! isUTF8 ( rawBufContent ) ) {
78
+ throw new Error ( `The config file at "${ configPath } " contains invalid charset, expect utf8` ) ;
79
+ }
80
+
81
+ return stripBom ( rawBufContent . toString ( "utf8" ) ) ;
82
+ }
0 commit comments