ESLintのインデントの設定でタブにしているがspaceのエラーが表示されています。
解決策をご教授ください。
eslintrc
1{ 2 "rules":{ 3 "indent": [2, "tab"] 4 }, 5 "installedESLint": true, 6 "plugins": [ 7 "react" 8 ] 9} 10
JavaScript
1export default class Meta extends Component { 2 render() { 3 return ( 4 <div> //この行からmeta={[]}の行までエラーが起きています。 5 <Helmet 6 htmlAttributes={{ lang: 'ja', amp: undefined }} // amp takes no value 7 titleTemplate="%s" 8 defaultTitle={baseTitle} 9 base={{ target: '_blank', href: url }} 10 meta={[ 11 { name: 'description', content: description }, 12 { property: 'og:type', content: 'article' }, 13 ]} 14 link={[ 15 { rel: 'canonical', href: url }, 16 { rel: 'apple-touch-icon', href: 'http://mysite.com/img/apple-touch-icon-57x57.png' }, 17 { rel: 'apple-touch-icon', sizes: '72x72', href: 'http://mysite.com/img/apple-touch-icon-72x72.png' }, 18 ]} 19 script={[ 20 // {'src': 'http://include.com/pathtojs.js', 'type': 'text/javascript'}, 21 { type: 'application/ld+json', innerHTML: '{ @context: "http://schema.org" }' }, 22 ]} 23 /> 24 </div> 25 ); 26 } 27} 28 29
bash
1Expected indentation of 2 space characters but found 0 react/jsx-indent 2
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/08/22 05:14