red-gold / react-social-network

Simple React Social Network
https://medium.com/@qolzam/create-social-network-by-react-js-fe60010a32e6
MIT License
489 stars 485 forks source link

environment.dev.ts (5,13): " should be ' #52

Closed indokely closed 6 years ago

indokely commented 6 years ago

Hello , I am getting below error... Please help

ts-loader: Using typescript@2.8.3 and C:\Users\handm\Dropbox\MundelProjects\React\GitProjects\react-social-network\tsconfig.json

Could not find implementations for the following rules specified in the configuration: ter-indent no-extra-boolean-cast Try upgrading TSLint and/or ensuring that you have all necessary custom rules installed. If TSLint was recently upgraded, you may have old rules configured which need to be cleaned up. Failed to compile.

C:/Users/handm/Dropbox/MundelProjects/React/GitProjects/react-social-network/src/config/environment.dev.ts (5,13): " should be '

Qolzam commented 6 years ago

Hello @indokely, seems when you copy/paste firebase configuration, you forget to replace " with ' . Following tsling rules in this project you only can use ' instead of ". If you are not happy with that rules you can try change the rules in tslint.json file in project root folder. Let me know if you have any issue.

indokely commented 6 years ago

@Qolzam Thank you :)