It is one of my favorite films. This film is based on the true story of Oskar Schindler, a business owner in Germany during the second world war period. He is a smart man in the business, did bribe Nazi military officers, and employed Jews in his factory. His action gave hope for Jews while it cost him a lot and made him in a dangerous position. Even though it is only a small number of Jews that can be saved compared to millions who were killed, his action can become an inspiration for future generations. This film is very strong and has a wide view. We can feel how hard living in the war period as slaves is and how important kindness is.
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