Code review: NullModule -> FlowStubModule

This commit is contained in:
Andy Mikulski 2018-03-08 10:12:18 -07:00
Родитель 72bae55cb7
Коммит dda12b4f52
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 66788E5FB2565F8B
3 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -9,7 +9,7 @@
[libs]
[options]
module.name_mapper.extension='less' -> '<PROJECT_ROOT>/NullModule.js'
module.name_mapper.extension='less' -> '<PROJECT_ROOT>/FlowStubModule.js'
module.name_mapper='^console\/\(.*\)$' -> '<PROJECT_ROOT>/console/\1'
emoji=true

6
FlowStubModule.js Normal file
Просмотреть файл

@ -0,0 +1,6 @@
/**
* This is a stub file used by the Flow checker for filetypes we wish to ignore.
* Essentially, this tells Flow that the module does not export anything, so
* there is nothing for it to type check.
*/
module.exports = {};

Просмотреть файл

@ -1 +0,0 @@
module.exports = {};