Browse Source

Fixed lint issues + cross platform lint command

update-deps
Alex Mikhalev 8 years ago
parent
commit
0bcf6b94f3
  1. 2
      app/script/components/DeviceView.tsx
  2. 2
      app/script/components/ProgramTable.tsx
  3. 2
      app/script/components/RunSectionForm.tsx
  4. 2
      app/script/components/SectionTable.tsx
  5. 2
      app/script/components/index.ts
  6. 2
      package.json

2
app/script/components/DeviceView.tsx

@ -40,4 +40,4 @@ export default class DeviceView extends React.PureComponent<{ device: Sprinklers
</Item> </Item>
); );
} }
} }

2
app/script/components/ProgramTable.tsx

@ -63,4 +63,4 @@ export default class ProgramTable extends React.PureComponent<{ programs: Progra
</Table> </Table>
); );
} }
} }

2
app/script/components/RunSectionForm.tsx

@ -65,4 +65,4 @@ export default class RunSectionForm extends React.Component<{
value: i, value: i,
})); }));
} }
} }

2
app/script/components/SectionTable.tsx

@ -51,4 +51,4 @@ export default class SectionTable extends React.PureComponent<{ sections: Sectio
</Table> </Table>
); );
} }
} }

2
app/script/components/index.ts

@ -4,4 +4,4 @@ export {default as DurationInput} from "./DurationInput";
export {default as MessagesView} from "./MessagesView"; export {default as MessagesView} from "./MessagesView";
export {default as ProgramTable} from "./ProgramTable"; export {default as ProgramTable} from "./ProgramTable";
export {default as RunSectionForm} from "./RunSectionForm"; export {default as RunSectionForm} from "./RunSectionForm";
export {default as SectionTable} from "./SectionTable"; export {default as SectionTable} from "./SectionTable";

2
package.json

@ -9,7 +9,7 @@
"clean": "rm -rf ./dist ./build", "clean": "rm -rf ./dist ./build",
"build": "webpack --config ./webpack/prod.config.js", "build": "webpack --config ./webpack/prod.config.js",
"start": "webpack-dev-server --config ./webpack/dev.config.js", "start": "webpack-dev-server --config ./webpack/dev.config.js",
"lint": "tslint app/script/**/* || :" "lint": "tslint app/script/**/* --force"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

Loading…
Cancel
Save