BTW, beberapa akhir terakhir, saya juga gemar me-unfriend orang tidak dikenal yang ada di daftar teman saya atau yang lebih sering adalah ketika ada kemunculan nama tidak dikenal di News Feed. Saya melakukan unfriend biasanya terkait dengan informasi pribadi di FB. Bagi orang yang tidak dikenal lebih baik tidak perlu mengetahui terlalu banyak seperti foto-foto, nomor HP, dan lainnya. Jika ada teman yang saya kenal namun sering mengirim post yang tidak penting tidak saya unfriend tapi cukup di-unsubscribe atau yang lebih sering saya pilih pilihan "only important".
If we initiate a Next.js project using the create-next-app tool, our project will be included with ESLint configuration that we can apply using yarn run lint . By default, the tool installs eslint-config-next and extends next/core-web-vitals in the ESLint configuration. The Next.js configuration has been integrated with linting rules for React and several other libraries and tools. yarn create next-app --typescript For additional configuration such as AirBnB, it is also possible. First, we need to install the peer dependencies of eslint-config-airbnb . We also add support for Typescript using eslint-config-airbnb-typescript . yarn add --dev eslint-config-airbnb eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react eslint-plugin-react-hooks yarn add --dev eslint-config-airbnb-typescript @typescript-eslint/eslint-plugin @typescript-eslint/parser After that, we can update the .eslintrc.json file for the new configuration. { "extends": [ "airb
Comments
Post a Comment